home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / compuserve-file-archive / 04 geoProgramming / COPEIN.SDA / CLICK ON ME (.txt) < prev    next >
Encoding:
GEOS ConVerT  |  2019-04-13  |  2.1 KB  |  53 lines

  1. Click On Me
  2. SEQ formatted GEOS file V1.0
  3. Epson FX-80
  4. KeyBoard
  5. LASTER'S 
  6. ONVERTER 
  7. COPE Source V1.1
  8. share1
  9. COPE Editor V1.3
  10. Untitled
  11. Click On Me
  12. F*F7F7F7F7F7F7F7F7F7F7F
  13. Here are some of the changes to bring you 
  14. up to date on Version 1.3
  15.   Local labels (temporary labels).
  16.   You can define a label as local.  
  17. These labels are designed to be used with branch
  18. instructions.  They are not added to the label array.  You
  19. can use the same label name in separate files without
  20. getting a duplicate label error.  Then are mainly used 
  21. for a faster assembly process and writing cleaner code.
  22.   Branch label names are identified with the
  23. '@' character.  The first four characters are used
  24. to identify the branch name.  Actual label names can
  25. be any length and contain any character.
  26. Source code for 'QuickView' is included to show how
  27. to use branch labels.
  28.   Both programs will search both drives for a filename, starting
  29. with the default drive.
  30.   DRIVE directive.
  31.    You can change the current drive with this
  32. directive.  Like this:  .Drive 8; drive 8 becomes the current
  33. drive.
  34.   Screen Scroling
  35.   The screen update routines are faster.  Scrolling up/down
  36. is handled differently for faster speed.
  37.   Name directive.
  38.   To insure compatability with the C128 80 column
  39. mode, you have to be able to set the 40/80 column
  40. flag in the header block.  The 'Name' directive now allows
  41. you to do this.
  42.   Old way:
  43.  .Name Quickview   V1.0
  44.  This is still acceptable but will leave the 40/80 column flag
  45.  as zero.
  46.   New way:
  47.  .Name "Quickview   V1.0',0,0,0,0
  48.  Single or double quotes can be used.  The Name directive
  49. functions similarly to the Byte directive when used in this
  50. manner.  Be sure you have all 20 bytes defined properly.
  51.   Thanks for your time, 
  52.   Bill Sharp
  53.